home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / email / MIMEMessage.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  1KB  |  29 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.4)
  3.  
  4. '''Class representing message/* MIME documents.'''
  5. from email import Message
  6. from email.MIMENonMultipart import MIMENonMultipart
  7.  
  8. class MIMEMessage(MIMENonMultipart):
  9.     '''Class representing message/* MIME documents.'''
  10.     
  11.     def __init__(self, _msg, _subtype = 'rfc822'):
  12.         '''Create a message/* type MIME document.
  13.  
  14.         _msg is a message object and must be an instance of Message, or a
  15.         derived class of Message, otherwise a TypeError is raised.
  16.  
  17.         Optional _subtype defines the subtype of the contained message.  The
  18.         default is "rfc822" (this is defined by the MIME standard, even though
  19.         the term "rfc822" is technically outdated by RFC 2822).
  20.         '''
  21.         MIMENonMultipart.__init__(self, 'message', _subtype)
  22.         if not isinstance(_msg, Message.Message):
  23.             raise TypeError('Argument is not an instance of Message')
  24.         
  25.         Message.Message.attach(self, _msg)
  26.         self.set_default_type('message/rfc822')
  27.  
  28.  
  29.